/**
- * gdk_threads_add_idle_full:
+ * gdk_threads_add_idle_full: (rename-to gdk_threads_add_idle)
* @priority: the priority of the idle source. Typically this will be in the
* range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE
* @function: function to call
* Return value: the ID (greater than 0) of the event source.
*
* Since: 2.12
- * Rename to: gdk_threads_add_idle
*/
guint
gdk_threads_add_idle_full (gint priority,
/**
- * gdk_threads_add_timeout_full:
+ * gdk_threads_add_timeout_full: (rename-to gdk_threads_add_timeout)
* @priority: the priority of the timeout source. Typically this will be in the
* range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
* @interval: the time between calls to the function, in milliseconds
* Return value: the ID (greater than 0) of the event source.
*
* Since: 2.12
- * Rename to: gdk_threads_add_timeout
*/
guint
gdk_threads_add_timeout_full (gint priority,
/**
- * gdk_threads_add_timeout_seconds_full:
+ * gdk_threads_add_timeout_seconds_full: (rename-to gdk_threads_add_timeout_seconds)
* @priority: the priority of the timeout source. Typically this will be in the
* range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
* @interval: the time between calls to the function, in seconds
* See g_timeout_add_seconds_full() for a discussion of why it is
* a good idea to use this function if you don't need finer granularity.
*
- * Return value: the ID (greater than 0) of the event source.
+ * Return value: the ID (greater than 0) of the event source.
*
* Since: 2.14
- * Rename to: gdk_threads_add_timeout_seconds
*/
guint
gdk_threads_add_timeout_seconds_full (gint priority,
/**
* gtk_about_dialog_set_copyright:
* @about: a #GtkAboutDialog
- * @copyright: (allow-none) the copyright string
+ * @copyright: (allow-none): the copyright string
*
* Sets the copyright string to display in the about dialog.
* This should be a short string of one or two lines.
}
/**
- * gtk_container_forall:
+ * gtk_container_forall: (virtual forall)
* @container: a #GtkContainer
* @callback: (scope call) (closure callback_data): a callback
* @callback_data: callback user data
* of the container, but were added by the container implementation
* itself. Most applications should use gtk_container_foreach(),
* rather than gtk_container_forall().
- *
- * Virtual: forall
**/
void
gtk_container_forall (GtkContainer *container,
}
/**
- * gtk_editable_insert_text:
+ * gtk_editable_insert_text: (virtual do_insert_text)
* @editable: a #GtkEditable
* @new_text: the text to append
* @new_text_length: the length of the text in bytes, or -1
*
* Note that the position is in characters, not in bytes.
* The function updates @position to point after the newly inserted text.
- *
- * Virtual: do_insert_text
*/
void
gtk_editable_insert_text (GtkEditable *editable,
}
/**
- * gtk_editable_delete_text:
+ * gtk_editable_delete_text: (virtual do_delete_text)
* @editable: a #GtkEditable
* @start_pos: start position
* @end_pos: end position
* are those from @start_pos to the end of the text.
*
* Note that the positions are specified in characters, not bytes.
- *
- * Virtual: do_delete_text
*/
void
gtk_editable_delete_text (GtkEditable *editable,
}
/**
- * gtk_editable_select_region:
+ * gtk_editable_select_region: (virtual set_selection_bounds)
* @editable: a #GtkEditable
* @start_pos: start of region
* @end_pos: end of region
* the end of the text.
*
* Note that positions are specified in characters, not bytes.
- *
- * Virtual: set_selection_bounds
*/
void
gtk_editable_select_region (GtkEditable *editable,
/**
- * gtk_list_store_newv:
+ * gtk_list_store_newv: (rename-to gtk_list_store_new)
* @n_columns: number of columns in the list store
* @types: (array length=n_columns): an array of #GType types for the columns, from first to last
*
* Non-vararg creation function. Used primarily by language bindings.
*
* Return value: (transfer full): a new #GtkListStore
- * Rename to: gtk_list_store_new
**/
GtkListStore *
gtk_list_store_newv (gint n_columns,
}
/**
- * gtk_list_store_set_valuesv:
+ * gtk_list_store_set_valuesv: (rename-to gtk_list_store_set)
* @list_store: A #GtkListStore
* @iter: A valid #GtkTreeIter for the row being modified
* @columns: (array length=n_values): an array of column numbers
* change is not known until run-time.
*
* Since: 2.12
- * Rename to: gtk_list_store_set
*/
void
gtk_list_store_set_valuesv (GtkListStore *list_store,
}
/**
- * gtk_selection_data_get_data_with_length:
+ * gtk_selection_data_get_data_with_length: (rename-to gtk_selection_data_get_data)
* @selection_data: a pointer to a #GtkSelectionData structure
* @length: (out): return location for length of the data segment
*
*
* Returns: (array length=length): the raw data of the selection
*
- * Rename to: gtk_selection_data_get_data
* Since: 3.0
*/
const guchar*
}
/**
- * gtk_tree_path_get_indices_with_depth:
+ * gtk_tree_path_get_indices_with_depth: (rename-to gtk_tree_path_get_indices)
* @path: a #GtkTreePath
* @depth: (out) (allow-none): return location for number of elements
* returned in the integer array, or %NULL
* indices, or %NULL
*
* Since: 3.0
- *
- * Rename to: gtk_tree_path_get_indices
*/
gint *
gtk_tree_path_get_indices_with_depth (GtkTreePath *path,
}
/**
- * gtk_tree_model_rows_reordered_with_length:
+ * gtk_tree_model_rows_reordered_with_length: (rename-to gtk_tree_model_rows_reordered)
* @tree_model: a #GtkTreeModel
* @path: a #GtkTreePath pointing to the tree node whose children
* have been reordered
* This should be called by models when their rows have been
* reordered.
*
- * Rename to: gtk_tree_model_rows_reordered
- *
* Since: 3.10
*/
void
return retval;
}
/**
- * gtk_tree_store_newv:
+ * gtk_tree_store_newv: (rename-to gtk_tree_store_new)
* @n_columns: number of columns in the tree store
* @types: (array length=n_columns): an array of #GType types for the columns, from first to last
*
* Non vararg creation function. Used primarily by language bindings.
*
* Return value: (transfer full): a new #GtkTreeStore
- * Rename to: gtk_tree_store_new
**/
GtkTreeStore *
gtk_tree_store_newv (gint n_columns,
}
/**
- * gtk_tree_store_set_valuesv:
+ * gtk_tree_store_set_valuesv: (rename-to gtk_tree_store_set)
* @tree_store: A #GtkTreeStore
* @iter: A valid #GtkTreeIter for the row being modified
* @columns: (array length=n_values): an array of column numbers
* the number of columns to change is not known until run-time.
*
* Since: 2.12
- * Rename to: gtk_tree_store_set
**/
void
gtk_tree_store_set_valuesv (GtkTreeStore *tree_store,
}
/**
- * gtk_tree_store_insert_with_valuesv:
+ * gtk_tree_store_insert_with_valuesv: (rename-to gtk_tree_store_insert_with_values)
* @tree_store: A #GtkTreeStore
* @iter: (out) (allow-none): An unset #GtkTreeIter to set the new row, or %NULL.
* @parent: (allow-none): A valid #GtkTreeIter, or %NULL
* function is mainly intended for language bindings.
*
* Since: 2.10
- * Rename to: gtk_tree_store_insert_with_values
*/
void
gtk_tree_store_insert_with_valuesv (GtkTreeStore *tree_store,